home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / officescan_disclosure.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  73 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # GPL
  5. #
  6. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  7. #      Erik Anderson <eanders@carmichaelsecurity.com>
  8. #      Added BugtraqID
  9. #
  10. # References :
  11. # Date:  Tue, 16 Oct 2001 11:34:56 +0900
  12. # From: "snsadv@lac.co.jp" <snsadv@lac.co.jp>
  13. # To: bugtraq@securityfocus.com
  14. # Subject: [SNS Advisory No.44] Trend Micro OfficeScan Corporate Edition
  15. # (Virus Buster Corporate Edition) Configuration File Disclosure Vulnerability 
  16. #
  17.  
  18. if(description)
  19. {
  20.  script_id(11074);
  21.  script_bugtraq_id(3438);
  22.  script_version ("$Revision: 1.8 $");
  23.  
  24.  name["english"] = "OfficeScan configuration file disclosure";
  25.  name["francais"] = "OfficeScan rΘvΦle son fichier de configuration";
  26.  script_name(english:name["english"], francais:name["francais"]);
  27.  
  28.  desc["english"] = "
  29. Trend Micro OfficeScan Corporate Edition (Japanese version: Virus 
  30. Buster Corporate Edition) web-based management console let anybody 
  31. access /officescan/hotdownload without authentication.
  32.  
  33. Reading the configuration file /officescan/hotdownload/ofcscan.ini
  34. will reveal information on your system. More, it contains passwords
  35. that are encrypted by a weak specific algorithm; so they might be 
  36. decrypted
  37.  
  38. Solution :  upgrade OfficeScan
  39. Risk factor : Low";
  40.  
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Checks for the presence of /officescan/hotdownload/ofscan.ini";
  45.  summary["francais"] = "VΘrifie la prΘsence de /officescan/hotdownload/ofscan.ini";
  46.  
  47.  script_summary(english:summary["english"], francais:summary["francais"]);
  48.  
  49.  script_category(ACT_GATHER_INFO);
  50.  
  51.  
  52.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi",
  53.         francais:"Ce script est Copyright (C) 2002 Michel Arboi");
  54.  family["english"] = "CGI abuses";
  55.  family["francais"] = "Abus de CGI";
  56.  script_family(english:family["english"], francais:family["francais"]);
  57.  script_require_ports("Services/www", 80);
  58.  script_dependencie("http_version.nasl");
  59.  exit(0);
  60. }
  61.  
  62. # The script code starts here
  63. include("http_func.inc");
  64. include("http_keepalive.inc");
  65. port = get_http_port(default:80);
  66. res = is_cgi_installed_ka(port:port, item:"/officescan/hotdownload/ofscan.ini");
  67. if(res)
  68. {
  69.  res = is_cgi_installed_ka(port:port, item:"/officescan/hotdownload/nessus.ini");
  70.  if ( res ) exit(0);
  71.  security_hole(port);
  72. }
  73.